home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / grafik / 3d & render tools / irit / man / man6 / ffmatch.6 < prev    next >
Encoding:
Text File  |  1996-07-16  |  1.6 KB  |  40 lines

  1. .TH FFMATCH
  2.  6 "IRIT Version 6.0" 
  3. .SH NAME
  4. FFMATCH
  5.  
  6.  
  7.  
  8.  FFMATCH( CurveType Crv1, CurveType Crv2, NumericType Reduce,
  9.           NumericType Samples, NumericType ReparamOrder,
  10.           NumericType Rotate, NumericType NormType )
  11.  
  12. Computes a reparametrization to Crv2 so it fits Crv1, the best
  13. under some prescribed norm, NormType. Currently the following norms
  14. are valid for NormType
  15.  
  16.     Value      Description
  17.     1          Suitable for ruled and blended curves, for modeling.
  18.                See RULEDSRF.
  19.     2          Suitable for metamorphosis of curves. See CMORPH.
  20.     3          Distance norm in "walking the dog" notion.
  21.     4          Bisector (skeleton) matching norm for two curves.
  22.  
  23. Whenever negative norms can result (for example, in cases were self
  24. intersection cannot be prevented in ruled surface constructions), one can
  25. allow negativity with no extra penalty by applaying neative NormType.
  26. Use of positive only norms would yield no output at all if no matching
  27. with positive weights can be established whereas allowing negative
  28. norm values would result in the globally optimal result, but with possibly
  29. self intersectiions.
  30.  
  31. The reparametrization is computed by sampling a fix set of size Samples
  32. off both curves, and fitting a Bspline curve of length Reduce as the
  33. reparametrization curve. Hence, Reduce must be less than or equal to
  34. Samples. The reparametrization curve will have order of
  35. ReparamOrder. If Rotate is TRUE or ON, then attempt is made
  36. to rotate the reparametrization of the curves. Rotation can be used on
  37. closed curves only.
  38.  
  39. See RULEDSRF and CMORPH for examples.
  40.